From: Tassilo Horn Date: Wed, 12 Jan 2011 07:35:04 +0000 (+0100) Subject: Minor docfixes in imagemagick_load_image. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~844^2~2875^2~5 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=03d32f1b2263270b75a0b3324c52c39965345665;p=emacs.git Minor docfixes in imagemagick_load_image. --- diff --git a/src/image.c b/src/image.c index c39a9ef2817..bb2ad20f5ff 100644 --- a/src/image.c +++ b/src/image.c @@ -7522,7 +7522,7 @@ imagemagick_load_image (/* Pointer to emacs frame structure. */ image to see how many sub-images it contains. Pinging is faster than loading the image to find out things about it. */ - /* MagickWandGenesis() initializes the imagemagick library. */ + /* `MagickWandGenesis' initializes the imagemagick environment. */ MagickWandGenesis (); image = image_spec_value (img->spec, QCindex, NULL); ino = INTEGERP (image) ? XFASTINT (image) : 0; @@ -7810,6 +7810,7 @@ imagemagick_load_image (/* Pointer to emacs frame structure. */ /* Final cleanup. image_wand should be the only resource left. */ DestroyMagickWand (image_wand); + /* `MagickWandTerminus' terminates the imagemagick environment. */ MagickWandTerminus (); return 1;